home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / stdio / rewind.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-20  |  103 b   |  10 lines

  1. #include <stdio.h>
  2.  
  3. #undef rewind
  4.  
  5. void rewind(FILE *f)
  6. {
  7.     fseek(f,0L,SEEK_SET);
  8.     clearerr(f);
  9. }
  10.